home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / recent / aminet2.lha / AminetRct1 < prev    next >
Text File  |  1998-06-23  |  1KB  |  39 lines

  1. /* $VER: AminetRct.yam v6.0 (06/23/98)
  2. ** by Charles Patterson <midian@azstarnet.com>
  3. ** http://www.azstarnet.com/~midian
  4. **
  5. ** Description: This script finds your "Today's Aminet Upload" email in
  6. **              YAM, lists the files so you can choose which ones you want
  7. **              to download, then sends email to a US FTPMAIL site to send
  8. **              them to you.
  9. **
  10. ** Requirements: YAM 2.0 (© 1995-98 Marcel Beck)
  11. **               TCP/IP Stack
  12. **               rexxreqtools.library 1.3 (© 1992-94 Rafael D'Halleweyn)
  13. **
  14. ** Instructions: Send email to listproc@mail.wustl.edu with the body:
  15. **                              SUBSCRIBE aminet-daily Your Name
  16. **                           or SUBSCRIBE aminet-weekly Your Name
  17. **               Copy this file to YAM:Rexx/
  18. **               Set FILES to the number of files you want listed at a time
  19. **               In YAM configuration under ARexx set scripts menu entry
  20. **               name to AminetRCT and script to YAM:Rexx/AminetRCT.yam
  21. **               Download your email then run this script from the YAM
  22. **                  Scripts menu.
  23. **
  24. ** --- Files listed: --- */
  25. FILES = 10
  26.  
  27. today = "Today's Aminet "
  28. weekly = "This week's Ami"
  29.  
  30. OPTIONS RESULTS
  31. OPTIONS FAILAT 21
  32. ADDRESS YAM
  33.  
  34. IF ~SHOW('L','rexxreqtools.library') THEN
  35.     CALL AddLib('rexxreqtools.library',0,-30,0)
  36.  
  37. NL = '0A'x
  38.  
  39.